diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/(system)/approval/line/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/(system)/approval/line/page.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/[lng]/evcp/(evcp)/(system)/approval/line/page.tsx b/app/[lng]/evcp/(evcp)/(system)/approval/line/page.tsx index 2e96b434..0e227e0b 100644 --- a/app/[lng]/evcp/(evcp)/(system)/approval/line/page.tsx +++ b/app/[lng]/evcp/(evcp)/(system)/approval/line/page.tsx @@ -9,16 +9,21 @@ import { getApprovalLineList } from '@/lib/approval-line/service'; import { SearchParamsApprovalLineCache } from '@/lib/approval-line/validations'; import { ApprovalLineTable } from '@/lib/approval-line/table/approval-line-table'; +import { useTranslation } from "@/i18n"; + export const metadata: Metadata = { title: '결재선 관리', description: '결재용 결재선을 관리합니다.', }; interface PageProps { + params: Promise<{ lng: string }>; searchParams: Promise<SearchParams>; } export default async function ApprovalLinePage(props: PageProps) { + const { lng } = await props.params + const { t } = await useTranslation(lng, 'menu') const searchParams = await props.searchParams; const search = SearchParamsApprovalLineCache.parse(searchParams); // getValidFilters 반환값이 undefined 인 경우 폴백 @@ -37,7 +42,7 @@ export default async function ApprovalLinePage(props: PageProps) { <div className="flex items-center justify-between space-y-2"> <div> <div className="flex items-center gap-2"> - <h2 className="text-2xl font-bold tracking-tight">결재선 관리</h2> + <h2 className="text-2xl font-bold tracking-tight">{t('menu.information_system.approval_line')}</h2> </div> </div> </div> |
